home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr37 / zhint49.zip / IRQS < prev    next >
Text File  |  1993-03-23  |  2KB  |  40 lines

  1.                      COMports, addresses & IRQs
  2.                            Don Hinds
  3.  
  4.      The  terms  serial port and COMport for all purposes,  mean  the  same
  5. thing.  A  serial port is a comport built into a computer, onto  which  you
  6. plug  an  external  device.  A modem can be  plugged  into  a  serial  port
  7. (external modem). An internal modem 'makes' a comport of it's own when  you
  8. plug  the modem card into the computer internal bus. The comport for  which
  9. the internal modem is set depends on jumpers on the modem.
  10.  
  11.      2  devices on a computer CANNOT use the same address. 2 devices  on  a
  12. computer  'may'  use  the same IRQ as long as one does not  have  a  device
  13. driver present. A mouse on COM-1 using IRQ-4 is one example, so COM-3 which
  14. also uses IRQ-4 cannot be used for anything. Comports/serial ports 1, 2,  3
  15. & 4 each have a unique address.
  16.  
  17.      Think  of comports as single family houses. That means one  house  has
  18. one  address. If there were 2 houses (comports/serial ports) with the  same
  19. address on the same street (computer bus), then the mail (command) would go
  20. to  the wrong house (port). So each comport/serial port must have a  unique
  21. address.
  22.  
  23.      Now  an IRQ is something like a telephone party-line. You can  have  2
  24. parties (devices) on one phone line (IRQ). The party (device) who picks  up
  25. the phone can call out. The party (device) who is 'home' (a device like  an
  26. answering  machine  or modem waiting for a call) will answer if  it  rings.
  27. However if one party (device like a mouse or scanner) has the phone off the
  28. hook  (a device driver loaded), the other party (device modem)  cannot  use
  29. the telephone (IRQ) even if it is another house (comport).
  30.  
  31.      So  if you want to use a comport which normally uses the same  IRQ  as
  32. one  which has a device driver, you must change the IRQ for that  port.  In
  33. the  manual it shows how jumpers may be set to give additional IRQ of 2  or
  34. 5.  This  means you could have 4 unique addresses 1, 2, 3, &  4,  and  each
  35. could have a unique IRQ 4, 3, 5, or 2. Some VIDEO cards use the address  of
  36. COM4  leaving COM3 for use. 386/486 computers use IRQ2 to  access  extended
  37. IRQs (above 7, sort of like call-forwarding). So you usually are left  with
  38. one alternate IRQ5 on those computers.
  39.  
  40.